home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Young Minds
/
Young Minds Interactive CD-ROM.ISO
/
corewars
/
test.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-02-14
|
104 b
|
11 lines
main()
{
int i, j;
for (i = 0; i <8000;)
{
for (j = 0; j < 10; j++, i++)
printf("%d", j);
}
}